Array Problem Set
Once again, all of this is happening in the console
- printReverse([x,x,x,x]) - Write function that takes an array as an argument and prints it in reverse order
- isUniform([x,x,x,x]) - Write function that checks to see if all items in an array are the same
- sumArray([x,x,x,x]) - Write function that sums all items in an array and returns the sum
- max([x,x,x,x]) - Write function that returns the max item in an array